home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 85 / MF_UK_85_1.iso / Resources / Text and Graphics / Peter’s Player 1.3 / Open Movie AppleScript < prev    next >
Encoding:
Text File  |  1998-05-07  |  315 b   |  7 lines  |  [TEXT/ToyS]

  1. -- let the user locate the player and a movie
  2. set player to (choose file with prompt "Locate Peter’s Player" of type "APPL")
  3. set movie to (choose file with prompt "Select a Movie" of type "MooV")
  4.  
  5. -- tell the Finder to launch the player with the movie
  6. tell application "Finder" to open file movie using file player
  7.